projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da8b0d6
)
* buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing change
author
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 27 Apr 2011 08:06:26 +0000
(
01:06
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 27 Apr 2011 08:06:26 +0000
(
01:06
-0700)
src/ChangeLog
patch
|
blob
|
history
src/buffer.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index e7cafd6ae257186565d3bddb350a0e8cca5bf4b1..cfa2894811d60afdc04b5b36032f1a744996175d 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,8
@@
+2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
+
+ * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
+ change.
+
2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
* nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
diff --git
a/src/buffer.c
b/src/buffer.c
index d9949045444c90a9cd30e03604f0b89ead6fc9e7..05bd129976fd905e33a4fb29cf40c72fe66879f6 100644
(file)
--- a/
src/buffer.c
+++ b/
src/buffer.c
@@
-5155,7
+5155,7
@@
init_buffer (void)
Map new memory. */
struct buffer *b;
- for (b = all_buffers; b; b = b->
next
)
+ for (b = all_buffers; b; b = b->
header.next.buffer
)
if (b->text->beg == NULL)
enlarge_buffer_text (b, 0);
}